02. Structured Languages
Structured Languages
Statement Types
QUIZ QUESTION::
Consider each of the following Python statements, and assign an appropriate label that best identifies what type of statement it is.
ANSWER CHOICES:
Statement |
Type |
---|---|
Function definition |
|
Assignment |
|
Increment |
|
Loop |
|
Conditional |
|
Function call |
SOLUTION:
Statement |
Type |
---|---|
Function definition |
|
Assignment |
|
Loop |
|
Conditional |
|
Function call |